home *** CD-ROM | disk | FTP | other *** search
/ Chip 2002 July / 07_02.iso / software / xq-xsetup / files / setup.exe / {app} / plugins / XQ WinNT Master Browser.xpl < prev    next >
Text File  |  2001-04-12  |  1KB  |  46 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="7"
  3. "COUNT"="2"
  4. "UIPATH"="Network\Server"
  5. "NAME"="Master Browser Options"
  6. "VERSION"="2.04"
  7. "OSVERSION"="010101"
  8. "WARNING"="1"
  9. "LANGUAGE"="VBScript"
  10. "TEXT 1"="NOT a Domain Master"
  11. "TEXT 2"="Domain Master!"
  12. "DESCRIPTION 1"="Electing a Master Browser guarantees there is only one Master Browser in a domain/workgroup. To control whether a PC is the Domain Master Browser use the controls."
  13. "AUTHOR"="Ojatex@aol.com"
  14. "CONTACTURL"="http://members.aol.com/ojatex/"
  15. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  16. "COMMENT 1"=" "
  17.  
  18. sP="HKLM\System\CurrentControlSet\Services\Browser\Parameters\IsDomainMaster"
  19.  
  20. Sub Plugin_Initialize 
  21.      i=RegReadValue(sP)
  22.      if i="FALSE" or IsEmpty(i) then 
  23.         SetUIElement 1,true
  24.      end if
  25.  
  26.      if i="Yes" then 
  27.         SetUIElement 2,true
  28.      end if
  29. End Sub
  30.  
  31. Sub Plugin_CheckData(ElementIndex)
  32. End Sub
  33.  
  34. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  35.  i=GetUIElement(1)
  36.  if i=true then
  37.     Call RegWriteValue(sP,"FALSE",1)
  38.  else
  39.     Call RegWriteValue(sP,"Yes",1)
  40.  end if
  41.  
  42. End Sub
  43.  
  44. Sub Plugin_Terminate 
  45. End Sub
  46.